home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / util / gnu / cvs-1.11.1p1.readme < prev    next >
Text File  |  2001-07-04  |  21KB  |  434 lines

  1. Short:    CVS 1.11.1p1 - Concurrent Versions System
  2. Author:   Various; ported by Olaf Barthel <olsen@sourcery.han.de>, Jens Langner <Jens.Langner@htw-dresden.de>
  3. Uploader: Jens Langner <Jens.Langner@htw-dresden.de>
  4. Type:     util/gnu
  5.  
  6. CVS 1.11.1p1 Amiga port (29 April 2001)
  7. =======================================
  8.  
  9. Introduction
  10. ------------
  11. This is a somewhat rough port of GNU CVS 1.11.1p1, a version control system, which
  12. allows you to keep old versions of files (usually source code), keep a log of
  13. who, when, and why changes occurred, etc., like RCS or SCCS. It handles
  14. multiple developers, multiple directories, triggers to enable/log/control
  15. various operations, and can work over a wide area network. The following tasks
  16. are not included; they can be done in conjunction with CVS but will tend to
  17. require some script-writing and software other than CVS: bug-tracking, build
  18. management (that is, make and make-like tools), and automated testing. (Quoted
  19. from the CVS documentation.)
  20.  
  21. I call this a 'rough port' since it is not as polished as, say Heinz Wrobel's
  22. excellent 'RCS' port. It does what it needs to do, but a few features are
  23. sorely lacking, such as support for Amiga file protection bits and code to
  24. communicate with CVS servers via secure channels (Kerberos, SSH). On the other
  25. hand, however, you get everything, and perhaps more, you got with the previous
  26. Amiga ports of CVS: this port does not require 'ixemul.library' to work and it
  27. does not require an RCS installation as it is completely self contained. The
  28. port also probably would win a price as the largest 'pure' executable; it can
  29. be made resident.
  30.  
  31.  
  32. What's in this package?
  33. -----------------------
  34. This distribution contains the Amiga port, the Amiga specific source code and
  35. most of the original GNU CVS 1.11.1p1 distribution. 'Most' in this case means that
  36. only the original source code has been omitted in order to keep the
  37. distribution archive small; the documentation and support files are all
  38. provided. The original source code can be downloaded from the Internet at
  39. 'ftp://ftp.cvshome.org/pub/cvs-1.11.1p1/cvs-1.11.1p1.tar.gz'. I have added two more
  40. files which are converted from the original Unix man pages, namely 'cvs.1.man'
  41. and 'cvs.5.man' whose sources can be found in the 'cvs-1.11.1p1/man' directory.
  42.  
  43.  
  44. Installation
  45. ------------
  46. Almost everything you need to get CVS up and running is contained in the
  47. archive which also included the 'README.AMIGA' file you are currently reading.
  48. And that means the 'cvs' executable. You will also need a working
  49. 'queue-handler' (the one that ships with Workbench 3.1 and beyond is,
  50. unfortunately, broken) which can be found on Aminet (you can find the archive
  51. at 'http://us.aminet.net/pub/aminet/util/sys/HWGQueue.lha'). A TCP/IP stack
  52. like Miami or AmiTCP is supported but not strictly required: you can perfectly
  53. well keep your CVS repository on your local machine. Since CVS may ask you to
  54. edit the log entries associated with the files to store, you may want to
  55. configure the 'EDITOR' environment variable. Last, but not least, you must set
  56. up an environment variable which allows CVS to associate you with the changes
  57. you made; this should be the 'USER', 'LOGUSER' or 'USERNAME' variable.
  58.  
  59. Most importantly, this port requires Kickstart 2.04 or higher.
  60.  
  61. Here is how you could set up CVS on your machine. We start by creating two
  62. drawers on the 'Work:' volume:
  63.  
  64.    MakeDir Work:CVS-Root
  65.    MakeDir Work:CVS-Home
  66.  
  67. Next, we add two lines to the 'S:User-Startup' file:
  68.  
  69.    Assign CVSHOME: Work:CVS-Home
  70.    Path CVSHOME: Add
  71.  
  72. The CVS program will need to be copied:
  73.  
  74.    Copy cvs Work:CVS-Home CLONE
  75.  
  76. And the path to the CVS repository needs to be set:
  77.  
  78.    SetEnv CVSROOT :local:Work:CVS-Root
  79.    Copy ENV:CVSROOT ENVARC:
  80.  
  81. Two environment variables need to be set up. Most importantly, CVS will need
  82. your ID to write it into the log and revision files it creates. The Amiga port
  83. will query three environment variables for that information, in the following
  84. order: 'USER', 'LOGUSER' and 'USERNAME'. This means if the variable 'USER' is
  85. not set, it will proceed to check whether 'LOGUSER' is set, and so forth. You
  86. may have already configured these variables, but if you haven't, I suggest you
  87. set up the 'LOGUSER' variable, like this:
  88.  
  89.    SetEnv LOGUSER <Your ID here>
  90.    Copy ENV:LOGUSER ENVARC:
  91.  
  92. Note that <Your ID here> should be replaced by a mnemonic, nick name or short
  93. name that must not contain any blank space characters.
  94.  
  95. You may want to configure the 'EDITOR' environment variable to invoke your
  96. preferred text editor when CVS requests that log messages are added for an
  97. update. If this variable is not set, CVS will default to invoke the 'Ed'
  98. editor. This can be problematic if you have installed 'CygnusEd' whose 'Ed'
  99. program detaches from the Shell that invoked it. When CVS invokes the editor,
  100. it expects it to return only when the user has finished editing the respective
  101. file. Here is an example configuration for CygnusEd:
  102.  
  103.    SetEnv EDITOR Ed -keepio
  104.  
  105. And here is one for TurboText:
  106.  
  107.    SetEnv EDITOR TTX WAIT
  108.  
  109. Don't forget to save the environment variable setting to make it permanent,
  110. like this:
  111.  
  112.    Copy ENV:EDITOR ENVARC:
  113.  
  114. Finally, install the 'queue-handler' from Aminet and reboot your machine. When
  115. the system is again up and running, initialize the CVS repository like this:
  116.  
  117.    cvs init
  118.  
  119. And that's all. Well, maybe you want to add a few default options to the
  120. configuration file CVS reads upon startup. That file should be placed in the
  121. 'CVSHOME:' directory and called '.cvsrc':
  122.  
  123.  
  124. Usage
  125. -----
  126. I personally found the default CVS documentation to be rather confusing. If
  127. you don't know rather well what CVS is good for, the examples, the
  128. terminology, all this doesn't seem to make great sense. My introduction to CVS
  129. followed with Karl Fogel's book "Open Source Development with CVS" which
  130. describes in compact form what CVS is and how it may be used. I suggest that
  131. you consult the book (portions of which are available from 'www.coriolis.com')
  132. and/or the CVS documentation (which has been included with this archive in the
  133. 'cvs-1.11/doc' drawer) for hints and ideas on how to use the program.
  134.  
  135. What many people fail to realize and what keeps them from using CVS in place
  136. of the revision control system they have used for years is that you do not
  137. need a networked CVS repository in order to use CVS. A local repository will
  138. do. In fact, I switched over most of my current software development projects
  139. to use a single local repository after I realized that CVS does much better
  140. what I had previously used RCS for.
  141.  
  142.  
  143. Notes on the implementation
  144. ---------------------------
  145. The Amiga port implements only the client side of the CVS system. This means
  146. that you can check out projects on remote servers but your local Amiga cannot
  147. be a CVS server itself. This feature was omitted deliberately since I could
  148. not find a safe and useful way to make CVS server mode work on the Amiga.
  149. AmigaOS is not a server operating system and shoehorning the code to make it
  150. work somehow would not have helped. If you need a CVS server, try a dedicated
  151. solution using, for example, 'NetBSD'. The Amiga port can communicate with the
  152. server using the remote shell protocol (rsh), and I have verified that the
  153. process works reasonably well with, for example, the public 'Samba' CVS
  154. repository. If you need a more secure method to communicate with the server
  155. ('rsh' is notoriously insecure and many systems no longer support it for
  156. precisely that reason) such as 'Kerberos IV' or 'Secure Shell' (ssh), you'll
  157. have a problem because there are no Amiga ports of these facilities available
  158. yet.
  159.  
  160. CVS does not have a very sophisticated porting layer. Its file name semantics
  161. all stem from the Unix world and the 'OS/2', 'VMS' and 'Windows NT' ports
  162. merely resort to flipping slashes in file names, if necessary, when it comes to
  163. make a name fit the local system's semantics. I had to find a similar way to
  164. make the semantics work on the Amiga. What I did was to add a translation
  165. service in the Amiga specific code which knows how to translate names like '.'
  166. or '..'. But that's where it ends. Any more sophisticated naming schemes like
  167. 'foo/.././bar' may fail to translate properly. But then, those complex
  168. patterns should be pretty rare anyway.
  169.  
  170. Unlike Heinz Wrobel's excellent 'RCS' port, this CVS port does not preserve
  171. Amiga file protection bits for files checked in. When you check in a project
  172. and check it out again, all file and directory protection bits will default to
  173. 'rwed', losing the 'archived', 'pure' and 'script' bits.
  174.  
  175. The Amiga port will expand wild card patterns for file and directory names
  176. specified as command line parameters, such as "#?.c". The wild card pattern
  177. syntax is that of AmigaDOS. It is *not* the syntax of the standard regular
  178. expressions other GNU tools will use.
  179.  
  180. You can access remote CVS repositories by means of a properly configured
  181. TCP/IP stack. This port requires that the stack complies to the AmiTCP V3 API
  182. definition, which all modern Amiga TCP/IP stacks do. It does not work with the
  183. INet-225 TCP/IP stack, though.
  184.  
  185. When CVS resorts to calling external programs, a working 'PIPE:' device is
  186. required, which is not yet part of the AmigaOS Workbench distribution. Do not
  187. underestimate this. The program will fail or behave erratically without a
  188. working 'PIPE:' device. It is strongly recommended to download a working
  189. 'queue-handler', such as from Aminet.
  190.  
  191. The source code for the Amiga port is included in this distribution. All you
  192. need to know before you can recompile this CVS port is described in the file
  193. 'README.AMIGA' which you can find in the 'source' directory.
  194.  
  195. This is a 'single user' CVS port. There is just one single home directory
  196. (referred to as 'CVSHOME:') and your login name and ID are assumed to be the
  197. same (set in the 'USER', 'LOGUSER' or 'USERNAME' environment variables).
  198.  
  199. There is no 'cvsbug' shell script or program included with this port.
  200.  
  201.  
  202. Contacting the author
  203. ---------------------
  204. If you have any further questions on this port, feel free to contact us:
  205.  
  206.    Olaf Barthel
  207.    Brabeckstr. 35
  208.    D-30559 Hannover
  209.    Federal Republic of Germany
  210.  
  211.    olsen@sourcery.han.de
  212.  
  213.    Jens Langner
  214.    Lannerstrasse 1
  215.    D-01219 Dresdem
  216.    Federal Republic of Germany
  217.  
  218.    Jens.Langner@htw-dresden.de
  219.  
  220. History
  221. -------
  222.  
  223. 2001-04-29 Jens Langner <Jens.Langner@htw-dresden.de>
  224.  
  225.  * updated CVS source tree to latest version 1.11.1p1
  226.    and updated amiga.c implementation accordingly
  227.  
  228.  * CVS/Entries files were broken because of some wrong time calculation
  229.    in convert_fileinfo_to_stat()
  230.  
  231.  * fixed some bugs in the smakefiles and corrected some header files
  232.  
  233. 2001-02-08 Olaf Barthel <olsen@sourcery.han.de>
  234.  
  235.  * Whoops. The fstat() replacement function did not get called and
  236.    thus ended up trashing the protection bits of files checked out.
  237.  
  238.  * The current signal handler was not properly restored in the
  239.    password entry routine.
  240.  
  241. 2001-02-07 Olaf Barthel <olsen@sourcery.han.de>
  242.  
  243.  * The password query routine failed to store the password entered,
  244.    rendering cvs almost entirely useless. The code was also vulnerable
  245.    when receiving a ^C break signal.
  246.  
  247.  * Rewrote stat(), fstat(), lstat() and chmod() from scratch since
  248.    the original implementations turned out to be fundamentally
  249.    incompatible with how CVS would use file attribute bits.
  250.  
  251.  * Worked around another potential pitfall with the access()
  252.    implementation.
  253.  
  254.  
  255. ============================= Archive contents =============================
  256.  
  257. Original  Packed Ratio    Date     Time    Name
  258. -------- ------- ----- --------- --------  -------------
  259.     1112     602 45.8% 30-Apr-01 21:57:26  ChangeLog.AMIGA
  260.   467916  244197 47.8% 29-Apr-01 10:59:08  cvs
  261.    11416    4976 56.4% 01-May-01 21:51:02  cvs-1.11.1p1.readme
  262.      146     118 19.1% 21-Dec-00 23:14:18 +AUTHORS
  263.    10018    3286 67.1% 19-Apr-01 20:45:26 +BUGS
  264.   115504   39114 66.1% 26-Apr-01 19:12:56 +ChangeLog
  265.    28657   28657  0.0% 28-Feb-01 15:49:38 +ChangeLog.zoo
  266.    16891    6407 62.0% 25-Apr-01 23:20:34 +ChangeLog
  267.     3344    1430 57.2% 30-Apr-01 20:46:22 +clmerge
  268.     1925     923 52.0% 30-Apr-01 20:46:22 +cln_hist
  269.     5520    2233 59.5% 30-Apr-01 20:46:22 +commit_prep
  270.     4530    1793 60.4% 30-Apr-01 20:48:08 +cvs2vendor
  271.     4530    1793 60.4% 28-Feb-01 15:49:38 +cvs2vendor.sh
  272.     2264     841 62.8% 30-Apr-01 20:48:08 +cvscheck
  273.     1389     696 49.8% 28-Feb-01 15:49:38 +cvscheck.man
  274.     2264     841 62.8% 28-Feb-01 15:49:38 +cvscheck.sh
  275.    14003    5121 63.4% 28-Feb-01 15:49:38 +cvshelp.man
  276.     5241    2363 54.9% 30-Apr-01 20:46:22 +cvs_acls
  277.     4456    1724 61.3% 30-Apr-01 20:48:08 +debug_check_log
  278.     4456    1724 61.3% 23-Oct-00 22:55:58 +debug_check_log.sh
  279.     2447    1224 49.9% 28-Feb-01 15:49:38 +descend.man
  280.     2532     968 61.7% 28-Feb-01 15:49:38 +descend.sh
  281.    11398    4224 62.9% 28-Feb-01 15:49:38 +dirfns.shar
  282.     4002    1764 55.9% 28-Feb-01 15:49:38 +intro.doc
  283.     4885    2022 58.6% 30-Apr-01 20:46:22 +log
  284.    14694    5026 65.7% 30-Apr-01 20:46:24 +log_accum
  285.    11639    3370 71.0% 30-Apr-01 20:46:22 +Makefile
  286.     3208    1303 59.3% 05-Jan-01 19:18:18 +Makefile.am
  287.     1877    1002 46.6% 30-Apr-01 20:46:24 +mfpipe
  288.     4647    1842 60.3% 30-Apr-01 20:48:08 +rcs-to-cvs
  289.     4647    1842 60.3% 28-Feb-01 15:49:38 +rcs-to-cvs.sh
  290.    17623    6942 60.6% 30-Apr-01 20:48:08 +rcs2log
  291.    17623    6942 60.6% 19-Apr-01 20:45:26 +rcs2log.sh
  292.     3946    1276 67.6% 28-Feb-01 15:49:38 +rcs2sccs.sh
  293.     6575    2787 57.6% 30-Apr-01 20:46:24 +rcslock
  294.     5029    2365 52.9% 19-Apr-01 20:45:26 +README
  295.     8344    3013 63.8% 30-Apr-01 20:46:24 +sccs2rcs
  296.    12559    4982 60.3% 19-Apr-01 20:45:26 +COPYING
  297.    25337    9300 63.2% 19-Apr-01 20:45:26 +COPYING.LIB
  298.     2775    1133 59.1% 24-Apr-01 19:14:50 +DEVEL-CVS
  299.   132208   42423 67.9% 25-Apr-01 23:31:46 +ChangeLog
  300.     1253     673 46.2% 28-Feb-01 15:49:38 +ChangeLog.fsf
  301.    37553   13601 63.7% 19-Apr-01 20:45:28 +cvs-paper.ms
  302.    85412   33032 61.3% 19-Apr-01 20:45:28 +cvs-paper.ps
  303.    25403    4798 81.1% 27-Apr-01 21:02:38 +cvs.aux
  304.     6415    2602 59.4% 27-Apr-01 21:02:42 +cvs.info
  305.    49250   17228 65.0% 27-Apr-01 21:02:42 +cvs.info-1
  306.    49487   16990 65.6% 27-Apr-01 21:02:42 +cvs.info-2
  307.    50378   15878 68.4% 27-Apr-01 21:02:42 +cvs.info-3
  308.    50809   17506 65.5% 27-Apr-01 21:02:42 +cvs.info-4
  309.    50319   17263 65.6% 27-Apr-01 21:02:42 +cvs.info-5
  310.    40903   13576 66.8% 27-Apr-01 21:02:42 +cvs.info-6
  311.    48527   13105 72.9% 27-Apr-01 21:02:42 +cvs.info-7
  312.    44540   16107 63.8% 27-Apr-01 21:02:42 +cvs.info-8
  313.    37168    7523 79.7% 27-Apr-01 21:02:42 +cvs.info-9
  314.  1057980  339365 67.9% 27-Apr-01 21:02:40 +cvs.ps
  315.   485333  163533 66.3% 24-Apr-01 19:14:52 +cvs.texinfo
  316.     2618     639 75.5% 27-Apr-01 21:02:40 +cvsclient.aux
  317.      865     462 46.5% 27-Apr-01 21:02:42 +cvsclient.info
  318.    24957    9277 62.8% 27-Apr-01 21:02:42 +cvsclient.info-1
  319.    39506   12187 69.1% 27-Apr-01 21:02:42 +cvsclient.info-2
  320.    28440   10032 64.7% 27-Apr-01 21:02:42 +cvsclient.info-3
  321.   250596   90778 63.7% 27-Apr-01 21:02:42 +cvsclient.ps
  322.    92982   31232 66.4% 24-Apr-01 19:14:52 +cvsclient.texi
  323.       20      20  0.0% 27-Apr-01 21:02:34 +CVSvn.texi
  324.    11325    4728 58.2% 19-Apr-01 20:45:28 +RCSFILES
  325.   345335  120316 65.1% 24-Apr-01 19:14:50 +FAQ
  326.     8912    4055 54.4% 24-Apr-01 19:14:50 +HACKING
  327.    17823    7052 60.4% 24-Apr-01 19:14:50 +INSTALL
  328.     8912    3706 58.4% 25-Apr-01 23:21:22 +ChangeLog
  329.    60139   20303 66.2% 19-Apr-01 20:45:30 +cvs.1
  330.    13383    4558 65.9% 28-Feb-01 15:49:38 +cvs.5
  331.     7127    3034 57.4% 19-Apr-01 20:45:30 +cvsbug.8
  332.     2822    1422 49.6% 19-Apr-01 20:28:56 +MINOR-BUGS
  333.    50095   18806 62.4% 27-Apr-01 20:59:46 +NEWS
  334.     2388    1188 50.2% 19-Apr-01 20:28:56 +PROJECTS
  335.     8219    3765 54.1% 24-Apr-01 19:14:50 +README
  336.     7227    3279 54.6% 19-Apr-01 20:45:26 +TESTS
  337.    41134   16919 58.8% 24-Apr-01 19:14:50 +TODO
  338.     1381     645 53.2% 25-Apr-01 23:21:50 +ChangeLog
  339.     5583    2162 61.2% 27-Apr-01 21:02:46 +Makefile.in
  340.      476     292 38.6% 19-Apr-01 20:29:12 +README
  341.    80207   23292 70.9% 03-Feb-01 14:44:20  cvs.1.man
  342.    17517    5120 70.7% 03-Feb-01 14:44:10  cvs.5.man
  343.    10054    4395 56.2% 30-Apr-01 22:13:14  README.AMIGA
  344.    13415    4158 69.0% 30-Apr-01 22:08:28 +amiga.diffs
  345.    59312   13927 76.5% 29-Apr-01 10:58:30 +amiga.c
  346.     7628    1985 73.9% 29-Apr-01 10:14:24 +amiga.h
  347.     1364     708 48.0% 03-Feb-01 12:01:32 +grp.h
  348.     1537     759 50.6% 28-Apr-01 16:16:14 +pwd.h
  349.     1406     729 48.1% 03-Feb-01 12:01:44 +signal.h
  350.      587     293 50.0% 03-Feb-01 12:02:12 +commifmt.h
  351.      970     576 40.6% 03-Feb-01 12:02:18 +file.h
  352.     1338     681 49.1% 03-Feb-01 12:02:26 +types.h
  353.     1232     639 48.1% 03-Feb-01 12:02:30 +wait.h
  354.     1307     678 48.1% 03-Feb-01 12:01:20 +utime.h
  355.      184     134 27.1% 09-Dec-97 12:50:14 +inet.h
  356.      696     265 61.9% 04-Dec-97 08:21:16 +miamisysctl.h
  357.     3819    1537 59.7% 04-Dec-97 09:08:26 +socketbasetags.h
  358.      742     346 53.3% 04-Dec-97 09:10:54 +miamibpf_protos.h
  359.     1751     650 62.8% 27-Dec-97 12:11:12 +miamipcap_protos.h
  360.     1554     629 59.5% 28-Dec-97 10:54:58 +miami_protos.h
  361.     2597     696 73.1% 04-Dec-97 10:18:56 +socket_protos.h
  362.     1385     452 67.3% 28-Dec-97 10:51:42 +usergroup_protos.h
  363.      336     190 43.4% 28-Dec-97 09:34:10 +errno.h
  364.      836     449 46.2% 26-Dec-97 07:05:48 +miami.h
  365.     1347     542 59.7% 28-Dec-97 10:51:24 +usergroup.h
  366.      365     210 42.4% 04-Dec-97 08:21:18 +ansi.h
  367.     1055     454 56.9% 04-Dec-97 08:21:18 +endian.h
  368.      409     211 48.4% 04-Dec-97 08:21:18 +types.h
  369.     2406     764 68.2% 04-Dec-97 08:21:16 +bpf.h
  370.     6049    2097 65.3% 28-Dec-97 13:41:42 +if.h
  371.     1180     532 54.9% 08-Dec-97 07:12:44 +pcap.h
  372.     1186     535 54.8% 08-Dec-97 07:12:56 +radix.h
  373.     7993    2875 64.0% 28-Dec-97 11:26:04 +route.h
  374.     3312    1331 59.8% 08-Dec-97 07:09:46 +netdb.h
  375.      328     211 35.6% 04-Dec-97 08:21:16 +icmp_var.h
  376.     2023     825 59.2% 04-Dec-97 08:21:16 +igmp.h
  377.      231     154 33.3% 04-Dec-97 08:21:16 +igmp_var.h
  378.    16894    4556 73.0% 08-Dec-97 07:11:04 +in.h
  379.      670     366 45.3% 04-Dec-97 08:21:16 +in_systm.h
  380.     4215    1678 60.1% 04-Dec-97 08:21:16 +ip.h
  381.     2877     981 65.9% 06-Dec-97 10:39:58 +ip6.h
  382.     4528    1544 65.9% 06-Dec-97 10:42:16 +ip6_icmp.h
  383.     2648     966 63.5% 06-Dec-97 10:43:08 +ip6_opts.h
  384.     5112    1754 65.6% 04-Dec-97 08:21:16 +ip_icmp.h
  385.     2765    1121 59.4% 28-Dec-97 10:28:44 +ip_mroute.h
  386.       87      68 21.8% 04-Dec-97 08:21:16 +ip_var.h
  387.     2663    1148 56.8% 04-Dec-97 08:21:16 +tcp.h
  388.     1088     447 58.9% 04-Dec-97 08:21:16 +tcp_var.h
  389.      346     218 36.9% 04-Dec-97 08:21:16 +udp.h
  390.      573     308 46.2% 04-Dec-97 08:21:16 +udp_var.h
  391.     3650     712 80.4% 30-Dec-97 15:00:22 +miamibpf_pragmas.h
  392.    11479    1451 87.3% 30-Dec-97 15:00:28 +miamipcap_pragmas.h
  393.    12185    1730 85.8% 30-Dec-97 15:00:36 +miami_pragmas.h
  394.    19604    2331 88.1% 30-Dec-97 15:00:42 +socket_pragmas.h
  395.    13876    1526 89.0% 30-Dec-97 15:00:48 +usergroup_pragmas.h
  396.      488     184 62.2% 25-Dec-97 07:21:06 +miamibpf_pragmas.h
  397.     1601     372 76.7% 27-Dec-97 12:08:58 +miamipcap_pragmas.h
  398.     1588     451 71.5% 28-Dec-97 10:55:16 +miami_pragmas.h
  399.     2314     580 74.9% 24-Dec-97 09:39:56 +socket_pragmas.h
  400.     1912     401 79.0% 25-Dec-97 06:47:06 +usergroup_pragmas.h
  401.      155     117 24.5% 24-Dec-97 09:40:36 +miami.h
  402.      170     123 27.6% 04-Dec-97 09:15:46 +miamibpf.h
  403.      175     126 28.0% 04-Dec-97 09:15:58 +miamipcap.h
  404.      182     128 29.6% 24-Dec-97 09:40:34 +socket.h
  405.      200     135 32.5% 04-Dec-97 09:16:08 +usergroup.h
  406.     2185    1084 50.3% 08-Dec-97 11:09:50 +resolv.h
  407.      481     242 49.6% 04-Dec-97 08:21:20 +cdefs.h
  408.     4470    1699 61.9% 04-Dec-97 08:21:20 +errno.h
  409.      596     286 52.0% 04-Dec-97 08:21:20 +filio.h
  410.     1189     529 55.5% 09-Dec-97 10:31:12 +ioccom.h
  411.      236     116 50.8% 04-Dec-97 08:21:20 +ioctl.h
  412.      163     131 19.6% 04-Dec-97 08:21:18 +param.h
  413.     9460    3407 63.9% 06-Dec-97 11:41:32 +socket.h
  414.     2950     741 74.8% 04-Dec-97 08:21:18 +sockio.h
  415.     1750     745 57.4% 04-Dec-97 08:21:18 +sysctl.h
  416.     4221    1626 61.4% 04-Dec-97 08:21:20 +syslog.h
  417.     1870     744 60.2% 04-Dec-97 09:18:46 +time.h
  418.     1479     639 56.7% 04-Dec-97 09:19:06 +types.h
  419.      443     268 39.5% 04-Dec-97 11:13:08 +uio.h
  420.      101      73 27.7% 04-Dec-97 10:45:00 +syslog.h
  421.      296     193 34.7% 07-Feb-01 16:35:12 +smakefile
  422.     7166    2051 71.3% 03-Feb-01 14:22:20 +_assert.c
  423.     4157    1379 66.8% 03-Feb-01 14:22:24 +_assert.h
  424.     9397    2400 74.4% 28-Apr-01 22:10:10 +config.h
  425.     2895    1502 48.1% 07-Feb-01 16:35:02 +smakefile
  426.     3682    1709 53.5% 07-Feb-01 16:34:56 +smakefile
  427.     1828     916 49.8% 01-May-01 21:59:08 +README.AMIGA
  428.      295     170 42.3% 03-Feb-01 12:40:24 +smakefile
  429.     8065    3567 55.7% 01-Feb-01 17:44:24 +options.h
  430.     5790    2480 57.1% 28-Apr-01 21:38:28 +smakefile
  431.     4108    1717 58.2% 07-Feb-01 16:35:26 +smakefile
  432. -------- ------- ----- --------- --------
  433.  4589548 1648191 64.0% 03-May-101 03:04:52   173 files
  434.